Re: [INTERFACES] How can I work thru this key problem?

Поиск
Список
Период
Сортировка
От Herouth Maoz
Тема Re: [INTERFACES] How can I work thru this key problem?
Дата
Msg-id l03130303b3c373b6cb10@[147.233.159.109]
обсуждение исходный текст
Список pgsql-sql
At 20:50 +0300 on 26/07/1999, marc rassbach wrote:


>
> When I place, oh say the string "Whatsmyid" into exampletable, I'd like to
> be able to know the value of keyiwant is, without going back and doing a
> select keyiwant from exampletable where otherinfo = "Whatsmyid"
>
> Ideas on how I can get to where I want to go?

Yes, after the INSERT, do:

SELECT currval('thenextkey');

This gives you the latest value of the sequence which your current session
has produced. Yes, it is multiuser-safe - no other process will receive the
number you produced except you.

BTW, this shouldn't be in the interfaces list. It's an SQL question.

Herouth

--
Herouth Maoz, Internet developer.
Open University of Israel - Telem project
http://telem.openu.ac.il/~herutma




В списке pgsql-sql по дате отправления:

Предыдущее
От: Predrag Lesic
Дата:
Сообщение: SELECT .. WHERE field IN (SELECT .. )
Следующее
От: Jens Glaser
Дата:
Сообщение: Outer Joins, Foreign keys, subselects